Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 8, 2025

This PR contains the following updates:

Package Change Age Confidence
@sxzz/test-utils ^0.5.14 -> ^0.5.15 age confidence
@types/node (source) ^25.0.2 -> ^25.0.3 age confidence
@typescript/native-preview (source) 7.0.0-dev.20251215.1 -> 7.0.0-dev.20251221.1 age confidence
@vitest/ui (source) ^4.0.15 -> ^4.0.16 age confidence
esbuild ~0.27.1 -> ~0.27.2 age confidence
pnpm (source) 10.26.0 -> 10.26.1 age confidence
tsdown (source) ^0.18.0 -> ^0.18.2 age confidence
vitest (source) ^4.0.15 -> ^4.0.16 age confidence

Release Notes

sxzz/test-utils (@​sxzz/test-utils)

v0.5.15

Compare Source

   🐞 Bug Fixes
  • rolldown: Default checks.pluginTimings to false  -  by @​sxzz (77a49)
    View changes on GitHub
microsoft/typescript-go (@​typescript/native-preview)

v7.0.0-dev.20251221.1

Compare Source

v7.0.0-dev.20251220.1

Compare Source

v7.0.0-dev.20251219.1

Compare Source

v7.0.0-dev.20251218.3

Compare Source

v7.0.0-dev.20251218.1

Compare Source

v7.0.0-dev.20251217.1

Compare Source

v7.0.0-dev.20251216.1

Compare Source

vitest-dev/vitest (@​vitest/ui)

v4.0.16

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
evanw/esbuild (esbuild)

v0.27.2

Compare Source

  • Allow import path specifiers starting with #/ (#​4361)

    Previously the specification for package.json disallowed import path specifiers starting with #/, but this restriction has recently been relaxed and support for it is being added across the JavaScript ecosystem. One use case is using it for a wildcard pattern such as mapping #/* to ./src/* (previously you had to use another character such as #_* instead, which was more confusing). There is some more context in nodejs/node#49182.

    This change was contributed by @​hybrist.

  • Automatically add the -webkit-mask prefix (#​4357, #​4358)

    This release automatically adds the -webkit- vendor prefix for the mask CSS shorthand property:

    /* Original code */
    main {
      mask: url(x.png) center/5rem no-repeat
    }
    
    /* Old output (with --target=chrome110) */
    main {
      mask: url(x.png) center/5rem no-repeat;
    }
    
    /* New output (with --target=chrome110) */
    main {
      -webkit-mask: url(x.png) center/5rem no-repeat;
      mask: url(x.png) center/5rem no-repeat;
    }

    This change was contributed by @​BPJEnnova.

  • Additional minification of switch statements (#​4176, #​4359)

    This release contains additional minification patterns for reducing switch statements. Here is an example:

    // Original code
    switch (x) {
      case 0:
        foo()
        break
      case 1:
      default:
        bar()
    }
    
    // Old output (with --minify)
    switch(x){case 0:foo();break;case 1:default:bar()}
    
    // New output (with --minify)
    x===0?foo():bar();
  • Forbid using declarations inside switch clauses (#​4323)

    This is a rare change to remove something that was previously possible. The Explicit Resource Management proposal introduced using declarations. These were previously allowed inside case and default clauses in switch statements. This had well-defined semantics and was already widely implemented (by V8, SpiderMonkey, TypeScript, esbuild, and others). However, it was considered to be too confusing because of how scope works in switch statements, so it has been removed from the specification. This edge case will now be a syntax error. See tc39/proposal-explicit-resource-management#215 and rbuckton/ecma262#14 for details.

    Here is an example of code that is no longer allowed:

    switch (mode) {
      case 'read':
        using readLock = db.read()
        return readAll(readLock)
    
      case 'write':
        using writeLock = db.write()
        return writeAll(writeLock)
    }

    That code will now have to be modified to look like this instead (note the additional { and } block statements around each case body):

    switch (mode) {
      case 'read': {
        using readLock = db.read()
        return readAll(readLock)
      }
      case 'write': {
        using writeLock = db.write()
        return writeAll(writeLock)
      }
    }

    This is not being released in one of esbuild's breaking change releases since this feature hasn't been finalized yet, and esbuild always tracks the current state of the specification (so esbuild's previous behavior was arguably incorrect).

pnpm/pnpm (pnpm)

v10.26.1

Compare Source

rolldown/tsdown (tsdown)

v0.18.2

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v0.18.1

Compare Source

   🚀 Features
export default defineConfig({
  entry: {
    '*': './src/*.ts',
    'data-loaders': './src/data-loaders/entries/index.ts',
    'data-loaders/*': './src/data-loaders/entries/!(index).ts',
    'volar/*': './src/volar/entries/*.ts',
  },
}
   🐞 Bug Fixes
    View changes on GitHub

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Dec 8, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 85009ec to 3b49814 Compare December 9, 2025 19:03
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Dec 9, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 8 times, most recently from c4c7ec4 to 998132b Compare December 15, 2025 13:12
@renovate renovate bot changed the title fix(deps): update all non-major dependencies fix(deps): update all non-major dependencies - autoclosed Dec 15, 2025
@renovate renovate bot closed this Dec 15, 2025
@renovate renovate bot deleted the renovate/all-minor-patch branch December 15, 2025 18:25
@renovate renovate bot changed the title fix(deps): update all non-major dependencies - autoclosed chore(deps): update all non-major dependencies Dec 22, 2025
@renovate renovate bot reopened this Dec 22, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 998132b to e8ea756 Compare December 22, 2025 02:41
@renovate renovate bot merged commit c68d18b into main Dec 22, 2025
10 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant